home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-11 | 328 b | 29 lines |
- #
- # QOS Makefile for DJGPP.
- #
-
- all: makefile.tag run.exe
-
- CFLAGS= -O -c -DMSDOS
-
- .c.o:
- gcc $(CFLAGS) $<
-
- L = -lsys -lc -lm
-
- run.exe : run.o
- gcc -o run run.o $(L)
- strip run
- coff2exe run
- del run
-
- makefile.tag:
- del *.tag
- del *.o
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >makefile.tag
-